16. Get Command
getCmd()
This function retrieves the command that executed the process.
string ProcessParser::getCmd(string pid)
{
string line;
ifstream stream = Util::getStream((Path::basePath() + pid + Path::cmdPath()));
std::getline(stream, line);
return line;
}